{% extends "base.html" %} {% block title %}Vaultora - Admin Dashboard{% endblock %} {% block content %}

🛡️ Admin Dashboard

{{ users | length }}

Total Users

{{ files | length }}

Total Files

{{ logs | length }}

Recent Events

🔑 Key Rotation
📡 SIEM Export

Download all audit logs in CEF format for ingestion into Splunk, QRadar, or any SIEM.

⬇ Export Audit Log (CEF)
📊 Performance Metrics

View encryption speed, decryption latency, and integrity check pass rates.

View Metrics Dashboard
📋 Recent Audit Log
{% for log in logs %} {% endfor %}
UserActionFileIPTime
{{ log.username }} {{ log.action }} {{ log.filename or '—' }} {{ log.ip }} {{ log.timestamp.strftime('%Y-%m-%d %H:%M') }}
{% endblock %}